home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Grafik / picFX / picFX.readme < prev    next >
Text File  |  1998-11-08  |  2KB  |  68 lines

  1. Short:Great CARDWARE image deformer (MUI) 0.84
  2. Author:Maxime Gamboni (maxime@intelcom.ch)
  3. Uploader:Maxime Gamboni (maxime@intelcom.ch)
  4. Type:gfx/edit
  5. Requires:15Bit or better display output on Cgx/p96; OS 3.0; MUI 3.x
  6. Requires:Lamp.mcc and SettingsWindow.mcc; look in dev/mui
  7. Version:0.84 Alpha
  8.  
  9. Note: If you would like to have AGA support, write to me.
  10. Sorry, no picture saving yet. I will try to make it available as soon
  11. as possible (use a screen grabber)
  12.  
  13. Read guide before using! (At least requirements and introduction!)
  14.  
  15. [New since 0.83 alpha:
  16. * You can now set precision for each function (r,g,b) separately.
  17. * You can read the old component of a function without recalculating it.
  18. * And you can copy a component to another (useful for e.g. b/w pictures),
  19. without recalculating it
  20. * Some bugs removed]
  21.  
  22. This program lets you mix, deform or create picutes using functions.
  23. You can open as many windows as you want, each one can be either an
  24. image or a function.
  25.  
  26. The program calculates your r(x,y) g(x,y) and b(x,y) functions and
  27. writes a pixel of these red/green/blue components. You can refer to
  28. other projects in a formula:
  29. r(2,x,y) = 255-r(1,x,y)
  30. g(2,x,y) = 255-g(1,x,y)
  31. b(2,x,y) = 255-b(1,x,y)
  32. would output a negative version of project number one.
  33.  
  34. r(3,x,y) = (r(1,x,y)+r(2,x,y))/2
  35. g(3,x,y) = (g(1,x,y)+g(2,x,y))/2
  36. b(3,x,y) = (b(1,x,y)+b(2,x,y))/2
  37. would mix projects one and two into project three.
  38.  
  39. r(1,x,y) = x
  40. g(1,x,y) = y
  41. b(1,x,y) = 255-(x+y)/2
  42. would produce a nice spread..
  43.  
  44. This program is completely multi-tasking! Every time a rendering is
  45. started, a new task is created and its priority is a little lower
  46. than the main task, so the main program isn't slowed down when
  47. projects are rendering!
  48.  
  49. There is a friendly and intuitive user interface using MUI.
  50.  
  51. You have wide control over running projects: you can pause or change
  52. the sub-task priority while it is running directely from the
  53. user-interface. You can also hide windows to avoid cluttering the
  54. screen. Then you won't even remark that the computer is hard working
  55. on those projects :-)
  56.  
  57. Locale support; available languages (the guide is English-only):
  58. - English
  59. - French
  60. [Any translator is welcome!]
  61.  
  62. Although this program is postcardware, it has no restriction. You can
  63. unpack and use it without limitation now!
  64.  
  65. Written in AmigaE, full source-code is included (MUI custom classes
  66. with custom methods and attributes, Exec lists, tasks and ports ...
  67. are used).                        
  68.